@charset "UTF-8";
/* Settings
==================================================*/
/* depreciated */
/* Fonts
==================================================*/
h1,
.text-h1 {
  font-size: clamp(2.6rem, 1.5rem + 3vw, 4.3rem); /* 42–69px */
  font-weight: 700;
  line-height: 1.2;
}

h2,
.text-h2 {
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.4375rem); /* 32–55px */
  font-weight: 700;
  line-height: 1.2;
}

h3,
.text-h3 {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.75rem); /* 26–44px (anchor) */
  font-weight: 700;
  line-height: 1.3;
}

h4,
.text-h4 {
  font-size: clamp(1.3rem, 0.9rem + 1.5vw, 2.2rem); /* 21–35px */
  font-weight: 500;
  line-height: 1.3;
}

h5,
.text-h5 {
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18–28px */
  font-weight: 500;
  line-height: 1.4;
}

h6,
.text-h6 {
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16–22px */
  font-weight: 400;
  line-height: 1.5;
}

p,
li {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16–18px */
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: none;
}

/* Colors
==================================================*/
/* Local mixins
==================================================*/
/* Workshops
==================================================*/
body {
  background-color: #f0f0f0;
}

.breadcrumb {
  background-color: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.pContent p.sub-head {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.pContent a:not(.btn) {
  color: #1b4692;
}

.featured-workshops,
.upcoming-workshops,
.workshop-agenda,
.training-comparison,
.reserve-spot,
.approval-letter,
.advisor-on-demand {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}
@media (max-width: 767px) {
  .featured-workshops,
  .upcoming-workshops,
  .workshop-agenda,
  .training-comparison,
  .reserve-spot,
  .approval-letter,
  .advisor-on-demand {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

/* Hero
==================================================*/
.workshop-hero {
  max-width: none;
  min-height: clamp(30rem, 46vw, 44rem);
  border-bottom: 1px solid rgba(18, 18, 18, 0.125);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  overflow: hidden;
  background-color: #f0f0f0;
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-content: center;
}
.workshop-hero > .summary {
  display: contents;
}
.workshop-hero .actions {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, max-content);
  gap: 1.25rem;
}
.workshop-hero .actions .btn {
  justify-self: start;
}
.workshop-hero h3,
.workshop-hero .lead,
.workshop-hero .actions {
  width: 100%;
  max-width: calc(683px + 2rem);
  justify-self: end;
  padding-right: clamp(2rem, 5vw, 4.5rem);
  padding-left: 2rem;
  grid-column: 1;
}
.workshop-hero h3 {
  margin: 0;
  font-size: clamp(1.6rem, 1rem + 2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.3;
  color: #121212;
}
.workshop-hero .lead {
  margin: 2rem 0 0;
  color: #393e41;
}
.workshop-hero .media {
  overflow: hidden;
  display: flex;
  position: absolute;
  inset: 0 max(1.5rem, (100% - 1366px) / 2) 0 50%;
  align-items: center;
  justify-content: center;
}
.workshop-hero .media img {
  width: auto;
  max-width: 100%;
  height: min(50vw - 4rem, 36rem);
  display: block;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.workshop-hero .media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 42%;
  background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0.82) 42%, rgba(240, 240, 240, 0) 100%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .workshop-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .workshop-hero h3 {
    padding-top: clamp(1.5rem, 5vw, 3rem);
  }
  .workshop-hero .actions {
    margin-top: 2rem;
  }
  .workshop-hero .media {
    position: static;
    margin-top: 2.5rem;
    justify-content: center;
    grid-column: 1;
  }
  .workshop-hero .media img {
    width: min(84vw, 26rem);
    height: min(84vw, 26rem);
  }
  .workshop-hero h3,
  .workshop-hero .lead,
  .workshop-hero .actions {
    max-width: 1366px;
    justify-self: stretch;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .workshop-hero .lead {
    max-width: 760px;
    margin-top: 1.35rem;
  }
  .workshop-hero .actions {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .workshop-hero .actions .btn,
  .workshop-hero .actions .btn-tertiary {
    grid-column: auto;
    justify-self: start;
  }
  .workshop-hero .media::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .workshop-hero h3,
  .workshop-hero .lead,
  .workshop-hero .actions {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .workshop-hero .actions .btn {
    width: 100%;
    white-space: normal;
  }
}

/* Workshop Detail Hero
==================================================*/
.workshop-detail-hero {
  position: relative;
  max-width: none;
  padding: clamp(1.5rem, 3vw, 2.5rem) 2rem clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  text-align: center;
  background-color: #fff;
  isolation: isolate;
}
.workshop-detail-hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background-image: url("https://tdwi.org/~/media/TDWI/TDWI%20Global/Workshops/assets/techlines_2560x1024_r1.webp");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  filter: grayscale(1);
}
.workshop-detail-hero h3[id*=h3Header] {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 1rem + 2vw, 2.75rem); /* 26-44px */
  line-height: 1.3;
  color: #121212;
}
.workshop-detail-hero .when {
  margin: 1.25rem 0 0;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); /* 18-24px */
  font-weight: 500;
  color: #121212;
}
.workshop-detail-hero .when strong {
  font-weight: 600;
}
.workshop-detail-hero .availability {
  margin: 0.75rem 0 0;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 600;
  color: #964069;
}
.workshop-detail-hero .lead {
  max-width: 980px;
  margin: 1.75rem auto 0;
  color: #393e41;
}
.workshop-detail-hero .actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.workshop-detail-hero .details {
  max-width: 1366px;
  display: flex;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.workshop-detail-hero .tile {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  flex: 0 0 auto;
}
.workshop-detail-hero .tile i {
  font-size: 3rem;
  color: #1b4692;
}
.workshop-detail-hero .tile .value {
  margin: 1.25rem 0 0.5rem;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); /* 18-24px */
  font-weight: 700;
  color: #121212;
}
.workshop-detail-hero .tile .label {
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #393e41;
}

/* Featured Companies (logo band)
==================================================*/
.featured-companies {
  overflow: hidden;
  background: linear-gradient(to right, #1b4692, #964069);
}
.featured-companies .track {
  width: max-content;
  display: flex;
  animation: featured-companies-scroll 32s linear infinite;
}
.featured-companies .set {
  display: flex;
  padding: clamp(1.75rem, 4vw, 2.75rem) 2rem;
  flex: 0 0 auto;
  gap: 4rem;
  align-items: center;
  justify-content: space-around;
}
.featured-companies .logo {
  width: 10rem;
  height: 4rem;
  display: inline-flex;
  flex: 0 0 10rem;
  align-items: center;
  justify-content: center;
}
.featured-companies .logo img {
  width: 8rem;
  max-height: 3rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}
@media (prefers-reduced-motion: reduce) {
  .featured-companies .track {
    animation: none;
  }
}

@keyframes featured-companies-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333333%);
  }
}
/* Skills & Outcomes
==================================================*/
.skills-outcomes {
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
}
.skills-outcomes h3[id*=h3Header],
.skills-outcomes h3[id*=h3Intro],
.skills-outcomes p.sub-head {
  text-align: center;
}
.skills-outcomes .circles {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.skills-outcomes .circle {
  width: clamp(11rem, 16vw, 15rem);
  display: grid;
  margin-inline: -1.4rem;
  border: 6px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 1.5rem;
  text-align: center;
  background: #f0f0f0;
  box-shadow: 0 0.5rem 1.25rem rgba(18, 18, 18, 0.12);
  position: relative;
  aspect-ratio: 1;
  place-items: center;
  transition: margin 300ms ease, background 300ms ease;
}
.skills-outcomes .circle p {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem); /* 18-20px */
  font-weight: 800;
  color: #121212;
  transition: color 300ms ease;
}
.skills-outcomes .circle:hover {
  margin-inline: 0.75rem;
  border-color: transparent;
  background: linear-gradient(to right, #1b4692, #964069);
  background-clip: padding-box;
  z-index: 1;
}
.skills-outcomes .circle:hover p {
  color: #fff;
}
.skills-outcomes .circles:has(.circle:hover) .circle:not(:hover) {
  margin-inline: -0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .skills-outcomes .circle {
    transition: none;
  }
}
@media (max-width: 991px) {
  .skills-outcomes .circles:has(.circle:hover) .circle:not(:hover) {
    margin-inline: -0.6rem;
  }
  .skills-outcomes .circle {
    margin: -0.6rem;
  }
  .skills-outcomes .circle:hover {
    margin: -0.6rem;
    border-color: rgba(255, 255, 255, 0.7);
    background: #f0f0f0;
    z-index: auto;
  }
  .skills-outcomes .circle:hover p {
    color: #121212;
  }
}

/* Featured Workshops
==================================================*/
.featured-workshops {
  max-width: none;
  overflow: hidden;
  background-color: #fff;
}
.featured-workshops > [id*=divBlockBox] {
  max-width: 1366px;
  margin: 0 auto;
}
.featured-workshops > [id*=divBlockBox] h3[id*=h3Header],
.featured-workshops > [id*=divBlockBox] h3[id*=h3Intro],
.featured-workshops > [id*=divBlockBox] p.sub-head {
  text-align: center;
}
.featured-workshops > [id*=divBlockBox] h3[id*=h3Header] {
  margin-top: 0;
}
.featured-workshops [id*=divListBox] {
  max-width: 1366px;
  margin: 0 auto;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.featured-workshops [id*=divListBox] > h3[id*=h3Header] {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  color: #121212;
}
.featured-workshops [id*=divListBox] > .sub-head {
  color: #393e41;
}
.featured-workshops [id*=divListBox] > ul {
  margin: 0;
  padding: 0;
  display: grid;
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 1366px) {
  .featured-workshops [id*=divListBox] > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .featured-workshops [id*=divListBox] > ul {
    grid-template-columns: 1fr;
  }
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  display: flex;
  margin: 0;
  padding: 1.75rem;
  list-style-type: none;
  flex-direction: column;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .MemberContentDescription,
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .MemberContentPurchase {
  display: none;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] > a:not(.btn) {
  order: 2;
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  color: #121212;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] > .summary {
  order: 3;
  flex: 1 1 auto;
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #393e41;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more {
  order: 1;
  margin-top: auto;
  padding-top: 1.5rem;
  align-self: flex-start;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a {
  min-height: 2.75rem;
  display: inline-flex;
  border: 0;
  border-radius: 100vw;
  padding: 0.8rem 1.35rem;
  font-family: inherit;
  font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1.05rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  color: #121212;
  background-color: transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transform: scale(1);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #121212 0%, rgb(38.4, 38.4, 38.4) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms ease-in-out;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:hover, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible {
  box-shadow: 0 0.35rem 0.9rem rgba(18, 18, 18, 0.1);
  transform: scale(1.018);
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:hover::before, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible::before {
  transform: scaleX(1);
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:disabled, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a[aria-disabled=true] {
  opacity: 0.65;
  pointer-events: none;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:disabled::before, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a[aria-disabled=true]::before {
  transform: scaleX(0);
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a.arrow::after {
  content: "\f061";
  display: inline-block;
  margin-left: 0.1rem;
  font-family: "Font Awesome 6 Free";
  font-size: inherit;
  font-weight: 900;
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:hover, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible {
    box-shadow: none;
    transform: scale(1);
  }
  .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a::before {
    transition: none;
  }
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a {
  color: #fff;
  background-color: #1b4692;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a::before {
  background: linear-gradient(90deg, rgb(17.4485549133, 45.2369942197, 94.3514450867) 0%, rgb(23.8161849711, 61.7456647399, 128.7838150289) 100%);
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:hover, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible {
  color: #fff;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:hover, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a:focus-visible {
  color: #fff;
  background-color: #1b4692;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .more > a::after {
  content: "\f061";
  display: inline-block;
  margin-left: 0.1rem;
  font-family: "Font Awesome 6 Free";
  font-size: inherit;
  font-weight: 900;
  text-decoration: none;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] [id*=spnDate],
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .date {
  order: 2;
  display: flex;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(18, 18, 18, 0.125);
  padding-top: 1.25rem;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 700;
  color: #121212;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] [id*=spnDate].available-now,
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .date.available-now {
  color: #964069;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .save {
  display: inline-flex;
  margin-right: auto;
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 700;
  color: #121212;
  background: none;
  cursor: pointer;
  gap: 0.5rem;
  align-items: center;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .save i {
  font-size: 1rem;
  color: #1b4692;
}
.featured-workshops [id*=divListBox] > ul li[id*=liListItem] .save:hover, .featured-workshops [id*=divListBox] > ul li[id*=liListItem] .save:focus-visible {
  color: #1b4692;
}

/* Upcoming Workshops (schedule)
==================================================*/
.upcoming-workshops > [id*=divBlockBox] h3[id*=h3Header],
.upcoming-workshops > [id*=divBlockBox] h3[id*=h3Intro],
.upcoming-workshops > [id*=divBlockBox] p.sub-head {
  text-align: center;
}
.upcoming-workshops > [id*=divBlockBox] {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.upcoming-workshops > [id*=divBlockBox] h3[id*=h3Header] {
  margin-top: 0;
}
.upcoming-workshops [id*=divListBox] {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas: "filters heading" "filters list";
  gap: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 3rem);
}
.upcoming-workshops [id*=divListBox] > h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1rem + 1.2vw, 2.25rem);
  font-weight: 800;
  color: #121212;
  grid-area: heading;
}
.upcoming-workshops .filters {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  padding: clamp(1.1rem, 0.9rem + 1vw, 1.35rem);
  position: sticky;
  top: 2rem;
  grid-area: filters;
  align-self: start;
}
.upcoming-workshops .filters ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.upcoming-workshops .filters > ul > li + li {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(18, 18, 18, 0.125);
  padding-top: 0.9rem;
}
.upcoming-workshops .filters > ul > li > button {
  border: 0;
  padding: 0;
  font-family: inherit;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 600;
  color: #121212;
  background: none;
  cursor: pointer;
}
.upcoming-workshops .filters > ul > li > button:not(:disabled):hover, .upcoming-workshops .filters > ul > li > button:not(:disabled):focus-visible {
  color: #1b4692;
}
.upcoming-workshops .filters > ul > li > button:disabled {
  color: #393e41;
  opacity: 1;
  cursor: default;
}
.upcoming-workshops .filters > ul > li.active > button {
  font-weight: 700;
  color: #1b4692;
}
.upcoming-workshops [id*=divListBox] > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  grid-area: list;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] {
  display: grid;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  grid-template-columns: clamp(4.5rem, 6vw, 5.5rem) minmax(0, 1fr) minmax(13rem, max-content);
  grid-template-areas: "date title actions" "date time actions";
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem]:first-child {
  padding-top: 0.5rem;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem][hidden] {
  display: none;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] + li[id*=liListItem] {
  border-top: 1px solid rgba(18, 18, 18, 0.125);
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .date {
  display: grid;
  border: 1px solid rgba(18, 18, 18, 0.125);
  text-align: center;
  background-color: #fff;
  aspect-ratio: 1;
  grid-area: date;
  place-content: center;
  gap: 0.3rem;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .date .month {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1b4692;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .date .day {
  font-size: clamp(1.8rem, 1.3rem + 1.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: #121212;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .date--on-demand i {
  font-size: clamp(1.8rem, 1.3rem + 1.2vw, 2.4rem);
  line-height: 1;
  color: #1b4692;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > a:not(.btn) {
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18-28px */
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  color: #121212;
  grid-area: title;
  align-self: end;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin: 0.5rem 0 0;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 500;
  color: #393e41;
  grid-area: time;
  align-self: start;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .summary.has-availability {
  display: flex;
  overflow: visible;
  flex-direction: column;
  gap: 0.35rem;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .summary .description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] > .summary .availability {
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 700;
  text-transform: uppercase;
  color: #964069;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .topics,
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .MemberContentDescription,
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .MemberContentPurchase {
  display: none;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions {
  display: grid;
  grid-area: actions;
  gap: 0.75rem;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions .btn {
  min-width: 13rem;
  justify-content: center;
}
.upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions .btn i {
  margin-right: 0.5ch;
}
@media (max-width: 991px) {
  .upcoming-workshops [id*=divListBox] {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: "heading" "filters" "list";
  }
  .upcoming-workshops .filters {
    padding: 0.85rem;
    position: static;
  }
  .upcoming-workshops .filters > ul {
    display: flex;
    align-items: stretch;
  }
  .upcoming-workshops .filters > ul > li {
    min-width: 0;
    display: flex;
    text-align: center;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
  }
  .upcoming-workshops .filters > ul > li + li {
    margin-top: 0;
    margin-left: 0.5rem;
    border-top: 0;
    border-left: 1px solid rgba(18, 18, 18, 0.125);
    padding-top: 0;
    padding-left: 0.5rem;
  }
  .upcoming-workshops .filters > ul > li > button {
    width: 100%;
    line-height: 1.25;
    text-align: center;
  }
  .upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] {
    grid-template-columns: clamp(4.5rem, 16vw, 5.5rem) minmax(0, 1fr);
    grid-template-areas: "date title" "date time" "actions actions";
    row-gap: 1rem;
  }
  .upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions {
    grid-auto-flow: column;
    justify-content: start;
  }
}
@media (max-width: 600px) {
  .upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions {
    width: 100%;
    grid-auto-flow: row;
  }
  .upcoming-workshops [id*=divListBox] > ul li[id*=liListItem] .actions .btn {
    width: 100%;
  }
}

/* Workshop Agenda
==================================================*/
.workshop-agenda {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.workshop-agenda > [id*=divBlockBox]:first-child h3[id*=h3Header],
.workshop-agenda > [id*=divBlockBox]:first-child h3[id*=h3Intro],
.workshop-agenda > [id*=divBlockBox]:first-child p.sub-head {
  text-align: center;
}
.workshop-agenda > [id*=divBlockBox]:first-child h3[id*=h3Header] {
  margin-top: 0;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) {
  --slot-width: 8rem;
  --rail-gap: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  position: relative;
  grid-template-columns: var(--slot-width) minmax(0, 1fr);
  column-gap: var(--rail-gap);
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child)::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--slot-width) + var(--rail-gap) / 2);
  background-color: rgba(18, 18, 18, 0.125);
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child):nth-child(2)::before {
  top: clamp(1.5rem, 3vw, 2rem);
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child):last-child::before {
  bottom: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) + [id*=divBlockBox]::after {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
  left: calc(var(--slot-width) + var(--rail-gap) / 2);
  background-color: rgba(18, 18, 18, 0.125);
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) h3[id*=h3Header] {
  margin: 0;
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18-28px */
  font-weight: 700;
  color: #121212;
  position: relative;
  grid-row: 1;
  grid-column: 2;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) h3[id*=h3Header]::before {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  position: absolute;
  top: 0.3em;
  left: calc(-1 * (var(--rail-gap) / 2 + 0.4375rem));
  border-radius: 50%;
  background: linear-gradient(to right, #1b4692, #964069);
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary {
  display: contents;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .slot {
  margin: 0.35rem 0 0;
  opacity: 0;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 600;
  text-align: right;
  color: #393e41;
  grid-row: 1;
  grid-column: 1;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details {
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 400;
  color: #393e41;
  grid-column: 2;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview > :first-child,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details > :first-child {
  margin-top: 0;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview > :last-child,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details > :last-child {
  margin-bottom: 0;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview h4,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details h4 {
  margin: 1.5rem 0 1rem;
  font-size: clamp(1.1rem, 0.8rem + 1vw, 1.75rem); /* 18-28px */
  font-weight: 700;
  color: #121212;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview ul,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview ol,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details ul,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details ol {
  margin-left: 0;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview blockquote.note p,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details blockquote.note p {
  font-weight: 700;
  font-style: italic;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview .alert,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details .alert {
  font-weight: 700;
  color: #964069;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview .level,
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details .level {
  display: inline-flex;
  border-radius: 0.4rem;
  padding: 0.55rem 0.95rem;
  font-size: clamp(0.6875rem, 0.65rem + 0.25vw, 0.75rem); /* 11-12px */
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #1b4692, #964069);
  align-items: center;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview {
  grid-row: 2;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details {
  grid-row: 3;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .more {
  margin-top: 0.75rem;
  border: 0;
  padding: 0;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 700;
  text-decoration: underline;
  color: #1b4692;
  background: none;
  cursor: pointer;
  grid-row: 4;
  grid-column: 2;
  justify-self: start;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child).is-collapsible > .summary > .details {
  display: none;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child).is-collapsible.expanded > .summary > .preview {
  display: none;
}
.workshop-agenda > [id*=divBlockBox]:not(:first-child).is-collapsible.expanded > .summary > .details {
  display: block;
}
@media (max-width: 991px) {
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.5rem;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child)::before,
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) + [id*=divBlockBox]::after,
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) h3[id*=h3Header]::before {
    content: none;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) + [id*=divBlockBox] {
    border-top: 1px solid rgba(18, 18, 18, 0.125);
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) h3[id*=h3Header] {
    grid-column: 1;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .slot {
    margin-top: 0;
    text-align: left;
    grid-row: 2;
    grid-column: 1;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview,
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details,
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .more {
    margin-top: 0;
    grid-column: 1;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .preview {
    grid-row: 3;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .details {
    grid-row: 4;
  }
  .workshop-agenda > [id*=divBlockBox]:not(:first-child) > .summary > .more {
    grid-row: 5;
  }
}

/* Testimonials
==================================================*/
.testimonials {
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  background-color: #fff;
}
.testimonials::before, .testimonials::after {
  content: "";
  width: clamp(3rem, 9vw, 9rem);
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.testimonials::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.testimonials::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.testimonials h3[id*=h3Header],
.testimonials h3[id*=h3Intro],
.testimonials p.sub-head {
  text-align: center;
}
.testimonials h3[id*=h3Header],
.testimonials p.sub-head {
  padding-right: 2rem;
  padding-left: 2rem;
}
.testimonials .row {
  width: max-content;
  display: flex;
  margin-top: 2rem;
  animation: testimonials-scroll 60s linear infinite;
}
.testimonials .row + .row {
  animation-direction: reverse;
}
.testimonials .set {
  display: flex;
  padding-right: 1.5rem;
  flex: 0 0 auto;
  gap: 1.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials .row {
    animation: none;
  }
}
.testimonials .card {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  width: min(25rem, 88vw); /* 400px, capped on small screens */
  height: 15.625rem; /* 250px */
  display: flex;
  padding: 1.5rem;
  flex-shrink: 0;
  flex-direction: column;
}
.testimonials .card .stars {
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #1b4692;
  gap: 0.3rem;
}
.testimonials .card blockquote {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16–18px */
  color: #393e41;
}
.testimonials .card cite {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: normal;
  color: #121212;
}
.testimonials .card cite span {
  font-weight: 500;
  color: #393e41;
}

@keyframes testimonials-scroll {
  to {
    transform: translateX(-50%);
  }
}
/* Training Comparison (why quality training matters)
==================================================*/
.training-comparison {
  max-width: none;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  background-color: #fff;
}
.training-comparison h3[id*=h3Header],
.training-comparison h3[id*=h3Intro],
.training-comparison p.sub-head {
  text-align: center;
}
.training-comparison h3[id*=h3Header] {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
}
.training-comparison .table-wrap {
  max-width: 60rem;
  margin: 0 auto;
}
.training-comparison table {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 8px;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.training-comparison table th,
.training-comparison table td {
  width: 18%;
  padding: 1.1rem 1.5rem;
  text-align: center;
}
.training-comparison table th:first-child,
.training-comparison table td:first-child {
  width: auto;
  text-align: left;
}
.training-comparison table th + th,
.training-comparison table th + td,
.training-comparison table td + th,
.training-comparison table td + td {
  border-left: 1px solid rgba(18, 18, 18, 0.125);
}
.training-comparison table thead th {
  border-left-color: transparent;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 700;
  color: #fff;
  background: #1b4692;
}
.training-comparison table tbody tr + tr td {
  border-top: 1px solid rgba(18, 18, 18, 0.125);
}
.training-comparison table tbody .feature {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 600;
  color: #121212;
}
.training-comparison table tbody td:nth-child(2) {
  background: linear-gradient(90deg, rgba(240, 240, 240, 0.75) 0%, rgba(240, 240, 240, 0.35) 100%);
}
.training-comparison .mark {
  width: 1.25rem;
  display: inline-grid;
  border-radius: 50%;
  font-size: 0.65rem;
  aspect-ratio: 1;
  place-items: center;
}
.training-comparison .mark.yes {
  color: #fff;
  background: linear-gradient(to right, #1b4692, #964069);
}
.training-comparison .mark.no {
  color: #393e41;
  background: rgba(57, 62, 65, 0.14);
}
.training-comparison .actions {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .training-comparison table {
    display: block;
    border: 0;
    background: transparent;
  }
  .training-comparison table thead {
    display: none;
  }
  .training-comparison table tbody {
    display: block;
  }
  .training-comparison table tbody tr + tr td {
    border-top: 0;
  }
  .training-comparison table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(18, 18, 18, 0.125);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }
  .training-comparison table tbody .feature {
    width: 100%;
    display: block;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    background: #1b4692;
  }
  .training-comparison table tbody td:not(.feature) {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    border-left: 0;
    padding: 0.875rem 1rem;
    background: none;
    align-items: center;
    justify-content: space-between;
  }
  .training-comparison table tbody td:not(.feature)::before {
    content: attr(data-label);
    font-size: 0.95rem;
    font-weight: 600;
    color: #393e41;
  }
  .training-comparison table tbody td:not(.feature):last-child {
    border-bottom: 0;
  }
}

/* Reserve Your Spot
==================================================*/
.reserve-spot {
  max-width: none;
  background-color: rgba(27, 70, 146, 0.05);
}
.reserve-spot h3[id*=h3Header],
.reserve-spot h3[id*=h3Intro],
.reserve-spot p.sub-head {
  text-align: center;
}
.reserve-spot > h3[id*=h3Header] {
  margin-top: 0;
}
.reserve-spot > .summary {
  max-width: 1100px;
  margin: 0 auto;
}
.reserve-spot h4 {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); /* 18-24px */
  font-weight: 800;
  color: #121212;
}
.reserve-spot .two-column {
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.reserve-spot .what-you-get ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.reserve-spot .what-you-get ul li {
  margin: 0 0 0.85rem;
  padding-inline-start: 1.9rem;
  position: relative;
  color: #393e41;
}
.reserve-spot .what-you-get ul li::before {
  content: "\f00c";
  position: absolute;
  top: 0.15em;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #1b4692;
}
.reserve-spot .register {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.75rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background-color: #fff;
}
.reserve-spot .register p {
  margin: 0 0 1rem;
  color: #393e41;
}
.reserve-spot .register .price {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); /* 18-24px */
  font-weight: 800;
  color: #121212;
}
.reserve-spot .register .price strong {
  font-weight: 800;
  color: #1b4692;
}
.reserve-spot .register .optional {
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
}
.reserve-spot .register .actions {
  margin-top: 1.5rem;
}
.reserve-spot .team-note {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  text-align: center;
  color: #393e41;
}

/* Approval Letter (get approval faster)
==================================================*/
.approval-letter {
  max-width: none;
  background-color: #fff;
}
.approval-letter h3[id*=h3Header],
.approval-letter h3[id*=h3Intro],
.approval-letter p.sub-head {
  text-align: center;
}
.approval-letter > h3[id*=h3Header] {
  margin-top: 0;
}
.approval-letter .letter {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(18, 18, 18, 0.55);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  cursor: text;
}
.approval-letter .letter:focus-visible, .approval-letter .letter:focus-within {
  outline: 2px solid #1b4692;
  outline-offset: 2px;
}
.approval-letter .letter p {
  margin: 0 0 1.25rem;
  color: #393e41;
}
.approval-letter .letter p:last-child {
  margin-bottom: 0;
}
.approval-letter .letter .placeholder {
  color: #964069;
}
.approval-letter .actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.approval-letter .reset-letter:not(.is-visible) {
  display: none;
}

/* Advisor On-Demand
==================================================*/
.advisor-on-demand {
  max-width: none;
  background-color: rgba(150, 64, 105, 0.05);
}
.advisor-on-demand h3[id*=h3Header],
.advisor-on-demand h3[id*=h3Intro],
.advisor-on-demand p.sub-head {
  text-align: center;
}
.advisor-on-demand > h3[id*=h3Header] {
  margin-top: 0;
}
.advisor-on-demand > .summary {
  max-width: 1100px;
  margin: 0 auto;
}
.advisor-on-demand .two-column {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 991px) {
  .advisor-on-demand .two-column {
    grid-template-columns: 1fr;
  }
}
.advisor-on-demand .intro p {
  margin: 0 0 1rem;
  color: #393e41;
}
.advisor-on-demand .intro p:last-child {
  margin-bottom: 0;
}
.advisor-on-demand .packages ul {
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  margin: 0;
  padding: 0;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.75rem, 3vw, 2.5rem);
  list-style-type: none;
}
.advisor-on-demand .packages ul li {
  display: grid;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  gap: 0.35rem;
}
.advisor-on-demand .packages ul li + li {
  border-top: 1px solid rgba(18, 18, 18, 0.125);
}
.advisor-on-demand .packages ul li .label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #393e41;
}
.advisor-on-demand .packages ul li .price {
  width: fit-content;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem); /* 32-44px */
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(to right, #1b4692, #964069);
  -webkit-background-clip: text;
  background-clip: text;
}
.advisor-on-demand .actions {
  display: flex;
  margin-top: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

/* Workshop Training (team training / why TDWI)
==================================================*/
.workshop-training {
  max-width: none;
  min-height: clamp(30rem, 50vw, 47rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  overflow: hidden;
  background-color: #fff;
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-content: center;
}
.workshop-training > .summary {
  display: contents;
}
.workshop-training .actions {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, max-content);
  gap: 1.25rem;
}
.workshop-training .actions .btn {
  justify-self: start;
}
.workshop-training h3,
.workshop-training .summary > :not(.media) {
  width: 100%;
  max-width: calc(683px + 2rem);
  justify-self: end;
  padding-right: clamp(2rem, 5vw, 4.5rem);
  padding-left: 2rem;
  grid-column: 1;
}
.workshop-training h3,
.workshop-training h4 {
  margin: 0;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.3;
  color: #121212;
}
.workshop-training h4 {
  margin-top: 2.5rem;
}
.workshop-training p {
  margin: 1.5rem 0 0;
  color: #393e41;
}
.workshop-training .media {
  display: flex;
  position: absolute;
  inset: 0 max(1.5rem, (100% - 1366px) / 2) 0 50%;
  align-items: center;
  justify-content: center;
}
.workshop-training .media img {
  width: auto;
  max-width: 100%;
  height: min(50vw - 3rem, 40rem);
  display: block;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .workshop-training {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .workshop-training h3 {
    padding-top: clamp(1.5rem, 5vw, 3rem);
  }
  .workshop-training .actions {
    margin-top: 2rem;
  }
  .workshop-training .media {
    position: static;
    margin-top: 2.5rem;
    justify-content: center;
    grid-column: 1;
  }
  .workshop-training .media img {
    width: min(84vw, 24rem);
    height: min(84vw, 24rem);
  }
  .workshop-training h3,
  .workshop-training .summary > :not(.media) {
    max-width: 1366px;
    justify-self: stretch;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

/* Explore Workshops (CTA band)
==================================================*/
.explore-workshops {
  display: grid;
  padding: clamp(2.5rem, 5vw, 4rem) max(2rem, (100% - 1366px) / 2 + 2rem);
  background: linear-gradient(to right, #1b4692, #964069);
  grid-template-columns: minmax(0, 1fr) max-content;
  grid-template-areas: "title cta" "sub cta";
  column-gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.explore-workshops > .summary {
  display: contents;
}
.explore-workshops h3 {
  margin: 0;
  font-size: clamp(1.6rem, 1rem + 2vw, 2.75rem); /* 26-44px */
  color: #fff;
  grid-area: title;
  align-self: end;
}
.explore-workshops p {
  margin: 0.5rem 0 0;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.4rem); /* 16-22px */
  color: #fff;
  grid-area: sub;
  align-self: start;
}
.explore-workshops .actions {
  grid-area: cta;
  align-self: center;
}
.explore-workshops .actions .btn {
  min-width: 19.25rem; /* 308px */
  min-height: 3.5625rem; /* 57px */
  padding: 1rem 2.25rem;
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
}
@media (max-width: 991px) {
  .explore-workshops {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "sub" "cta";
  }
  .explore-workshops .actions {
    margin-top: 1.75rem;
  }
}

/* FAQ
==================================================*/
.faq-home {
  max-width: 1366px;
  display: grid;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  interpolate-size: allow-keywords;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 6rem;
}
@media (max-width: 991px) {
  .faq-home {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.faq-home h3 {
  max-width: min-content;
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  color: #1b4692;
  position: sticky;
  top: 2rem;
  align-self: start;
}
@media (max-width: 991px) {
  .faq-home h3 {
    max-width: unset;
    position: static;
    font-size: 2.25rem;
    text-align: center;
  }
}
.faq-home > ul {
  margin: 0;
  padding: 0;
}
.faq-home > ul li.accordion-item {
  width: 100%;
  display: grid;
  padding: 1.5rem 0;
  list-style-type: none;
  font-size: 1.25rem;
  grid-template-columns: 1fr auto;
  gap: 0 1rem;
  align-items: start;
}
.faq-home > ul li.accordion-item > :not(.question, .answer) {
  display: none;
}
.faq-home > ul li.accordion-item + li {
  margin-top: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.25);
}
.faq-home > ul li.accordion-item p {
  text-wrap: wrap;
}
@supports (text-wrap: pretty) {
  .faq-home > ul li.accordion-item p {
    text-wrap: pretty;
  }
}
.faq-home > ul li.accordion-item p {
  font-size: 1rem;
  color: #393e41;
}
.faq-home > ul li.accordion-item .question {
  font-weight: 500;
  transition: color 200ms ease;
  cursor: pointer;
  grid-row: 1;
}
.faq-home > ul li.accordion-item:hover:not(.open) .question {
  color: #1b4692;
}
.faq-home > ul li.accordion-item:hover:not(.open)::after {
  color: #393e41;
  opacity: 1;
}
.faq-home > ul li.accordion-item::after {
  content: "+";
  margin-left: 1rem;
  font-family: "Font Awesome 6 Free";
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: #121212;
  opacity: 0.25;
  cursor: pointer;
  grid-row: 1;
  align-self: center;
  transition: 400ms all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-home > ul li.accordion-item .answer {
  height: 0;
  display: block;
  margin-top: 0;
  opacity: 0;
  overflow: clip;
  transform: translateY(-0.35rem);
  transition: height 350ms ease, margin-top 350ms ease, opacity 250ms ease, transform 350ms ease;
  grid-row: 2;
  grid-column: 1/-1;
}
.faq-home > ul li.accordion-item.open .answer {
  height: auto;
  margin-top: 1rem;
  opacity: 1;
  transform: translateY(0);
}
.faq-home > ul li.accordion-item.open::after {
  opacity: 0.5;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .faq-home > ul li.accordion-item {
    font-size: 1rem;
  }
}
.faq-home > ul li.accordion-item ul {
  margin: 1rem 0 0 2rem;
  padding: 0;
}
.faq-home > ul li.accordion-item ul li {
  font-size: 1rem;
  line-height: 1.5;
  list-style-type: disc;
  color: #393e41;
}
.faq-home > ul li.accordion-item ul li::marker {
  color: #1b4692;
}
.faq-home > ul li.accordion-item ul li + li {
  margin-top: 0.5rem;
}
.faq-home > ul li.accordion-item ul li strong {
  font-size: 1rem;
}

/* Workshop Instructors
==================================================*/
.workshop-instructors {
  margin-top: -40px;
  margin-bottom: -40px;
  padding: calc(clamp(2.5rem, 4vw, 3.75rem) + clamp(60px, 5vw, 80px)) 2rem;
  position: relative;
  isolation: isolate;
  background-color: #1b4692;
  z-index: 3;
}
.workshop-instructors::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: clamp(60px, 5vw, 80px);
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  z-index: 0;
}
.workshop-instructors::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: clamp(60px, 5vw, 80px);
  background-color: #fff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.workshop-instructors h3[id*=h3Header],
.workshop-instructors h3[id*=h3Intro],
.workshop-instructors p.sub-head {
  text-align: center;
}
.workshop-instructors h3[id*=h3Header],
.workshop-instructors .sub-head {
  color: #fff;
}
.workshop-instructors .cards {
  max-width: min(1366px, 100%);
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.workshop-instructors .card {
  width: min(100%, 36.25rem); /* 580px */
  min-height: 12.5rem; /* 200px, matches the design's 166px photo */
  display: flex;
  border: 1px solid rgba(18, 18, 18, 0.125);
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
  background-color: #fff;
  align-items: stretch;
}
.workshop-instructors .card img {
  width: clamp(10.375rem, 12vw, 11.5rem); /* ~166px at the 200px card height */
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  align-self: center;
}
.workshop-instructors .card .info {
  padding: 0.5rem clamp(1.25rem, 2vw, 1.75rem);
  align-self: center;
}
.workshop-instructors .card h4 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.25rem); /* 18-20px */
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}
.workshop-instructors .card .role {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16-18px */
  font-weight: 600;
  color: #121212;
}
.workshop-instructors .card .role span {
  font-weight: 400;
  color: #393e41;
}
.workshop-instructors .card .classes {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.workshop-instructors .card .classes li {
  margin: 0 0 0.4rem;
  padding-inline-start: 0;
}
.workshop-instructors .card .classes a {
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  font-weight: 500;
  text-decoration: underline;
  color: #1b4692;
}
.workshop-instructors .card .bio {
  margin: 0;
  font-size: clamp(0.889rem, 0.8rem + 0.356vw, 1rem); /* 14-16px */
  color: #393e41;
}
.workshop-instructors.solo h3[id*=h3Header] {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.workshop-instructors.solo .card {
  width: min(100%, 75rem);
  padding-block: 0;
  padding-inline: clamp(1.5rem, 3vw, 2rem);
}
.workshop-instructors.solo .card .info {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.workshop-instructors.solo .card img {
  width: min(100%, 16rem);
  height: auto;
  aspect-ratio: 1;
  align-self: center;
}
.workshop-instructors.solo::before {
  background-color: #f0f0f0;
}
@media (max-width: 991px) {
  .workshop-instructors .card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .workshop-instructors.solo .card {
    padding-top: clamp(1.5rem, 3vw, 2rem);
    flex-direction: column;
  }
}

/*# sourceMappingURL=workshops-styles.css.map */
